home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assembly / mapsrc.lha / macros / cas3 next >
Encoding:
Text File  |  1980-02-19  |  221 b   |  11 lines

  1. cas3:    macro    ;checks the range of a number: cas3 dn(1),dn(2),dn(d)
  2.             ;if equal z bit set. dn(1) less than dn(2)
  3.             ;d0 changed. if less (blo) high (bhi)
  4.     cmp.w \1,\3
  5.     blo .\@a
  6.     cmp.w \2,\3
  7.     bhi .\@a
  8.     clr.b d0
  9. .\@a    
  10.     endm
  11.